home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland Pascal with Objects 7.0 / RWDEMOS.ZIP / BITBTNCO.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1992-10-27  |  665 b   |  31 lines

  1. {************************************************}
  2. {                                                }
  3. {   Resource Workshop Demo unit                  }
  4. {   Copyright (c) 1992 by Borland International  }
  5. {                                                }
  6. {************************************************}
  7.  
  8. unit BitBtnCo;
  9.  
  10. interface
  11.  
  12. const
  13.  
  14.     idButtonStyle    =    100;
  15.     idCaption    =    100;
  16.     idControlId    =    101;
  17.     idTabStop    =    102;
  18.     idDisabled    =    103;
  19.     idGroup         =    104;
  20.     idDefaultButton    =    105;
  21.     idPushButton    =    106;
  22.     btDisableBits   =       100;
  23.     btDefBits    =    101;
  24.     btUndefBits    =    102;
  25.     crDefCurs    =    100;
  26.     crUndefCurs    =    101;
  27.  
  28. implementation
  29.  
  30. end.
  31.